home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / utility / enc.zip / COPYWIN.BAT < prev    next >
DOS Batch File  |  1993-11-12  |  513b  |  23 lines

  1. @echo off
  2. if "%1"=="" goto param
  3. if not exist %1susenc.exe goto disk
  4. if not exist %1resenc.exe goto disk
  5. if not exist %1wine.bat goto disk
  6. copy %1susenc.exe susenc.exe > nul
  7. if errorlevel goto file
  8. copy %1resenc.exe resenc.exe > nul
  9. if errorlevel goto file
  10. copy %1wine.bat wine.bat > nul
  11. if errorlevel goto file
  12. goto end
  13. :param
  14. echo Missing parameter!  Command - copywin drive:
  15. goto end
  16. :disk
  17. echo Missing ENC! file(s) in drive %1
  18. goto end
  19. :file
  20. echo Error copying file(s) in drive %1
  21. :end
  22.  
  23.